Method: Integer#>=
- Defined in:
- numeric.c
#>=(real) ⇒ Boolean
Returns true if the value of self is greater than or equal to that of other:
1 >= 0 # => true
1 >= 1 # => true
1 >= 2 # => false
1 >= 0.5 # => true
1 >= Rational(1, 2) # => true
Raises an exception if the comparison cannot be made.
4853 4854 4855 4856 4857 4858 4859 4860 4861 4862 4863 |
# File 'numeric.c', line 4853
VALUE
rb_int_ge(VALUE x, VALUE y)
{
if (FIXNUM_P(x)) {
return fix_ge(x, y);
}
else if (RB_BIGNUM_TYPE_P(x)) {
return rb_big_ge(x, y);
}
return Qnil;
}
|